home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / util / rexx / stripcr.lha / stripcr.ced < prev    next >
Text File  |  2002-06-03  |  516b  |  26 lines

  1. /*
  2. ** StripCR.ced
  3. **
  4. ** $VER: StripCR.ced 1.0 (17.05.99)
  5. **
  6. ** This script simply select all the current file and strip CR...
  7. **
  8. ** Useful to import Window$/DOS text files (LF/CR as lines terminators)
  9. ** under AmigaOS (or Unix & GNU/Linux) to keep only the LF (Line Feed).
  10. **
  11. ** (Note that Macintosh files uses only CR)
  12. **
  13. ** Requires CygnusEd Professional 4.x to run.
  14. **
  15. ** Copyright © 1999 dan "at" migazone "dot" com
  16. */
  17.  
  18. ADDRESS 'CYGNUSED'
  19.  
  20. JUMP TO LINE 1
  21. MARK
  22. "END OF FILE"
  23. STRIP CR MARKED
  24. JUMP TO LINE 1
  25. EXIT 0
  26.